

/* Section Tag */
.section-tag {
    color: #ff3b30;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-heading {
    font-size: 46px;
    font-weight: 600;
    color: #002964;
    margin: 15px 0;
    line-height: 1.3;
}

.section-heading span {
    color: #ff3b30;
}


/* ====================================
Refrigerator Freezer Banner
====================================*/
.freezer-banner-section {
    min-height: 700px;
    padding: 80px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(0, 41, 100, .10),
            transparent 32%
        ),
        linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
}


/* =========================
   HERO ROW
========================= */

.freezer-banner-section .hero-row {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 40px;
}


/* =========================
   LEFT CONTENT
========================= */

.hero-content {
    position: relative;
    z-index: 5;
}

.banner-sub-heading {
    display: inline-block;
    color: #ff3b30;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-content h1 {
    color: #002964;
    font-size: 52px;
    line-height: 1.12;
    font-weight: 600;
    margin: 0 0 25px;
}

.hero-content h1 span {
    color: #ff3b30;
}

.hero-content p {
    max-width: 590px;
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}


/* =========================
   BUTTONS
========================= */

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 35px;
}

.hero-buttons a {
    padding: 14px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .3s ease;
}

.hero-buttons .primary {
    color: #fff;
    background: #ff3b30;
}

.hero-buttons .primary:hover {
    background: #e72d24;
    transform: translateY(-3px);
}

.hero-buttons .secondary {
    color: #ff3b30;
    background: #fff;
    border: 1px solid #ff3b30;
}

.hero-buttons .secondary:hover {
    color: #fff;
    background: #ff3b30;
    transform: translateY(-3px);
}


/* =========================
   FEATURES
========================= */

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid #e3eaf4;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 41, 100, .07);
    transition: .3s ease;
}

.hero-feature:hover {
    transform: translateY(-4px);
    border-color: #ff3b30;
}

.hero-feature i {
    color: #ff3b30;
    font-size: 14px;
}

.hero-feature span {
    color: #002964;
    font-size: 13px;
    font-weight: 500;
}


/* =========================
   RIGHT IMAGE
========================= */

.hero-image {
    min-height: 540px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Big background glow */

.hero-image-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0, 41, 100, .16) 0%,
            rgba(0, 41, 100, .07) 40%,
            transparent 70%
        );
}


/* Product */

.hero-image img {
    position: relative;
    z-index: 2;
    width: 115%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(
        0 30px 35px rgba(0, 41, 100, .20)
    );
    transition: .5s ease;
}

.hero-image:hover img {
    transform: translateY(-8px) scale(1.02);
}


/* =========================
   FLOATING CARDS
========================= */

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(0, 41, 100, .08);
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 41, 100, .12);
    color: #002964;
    font-size: 12px;
}

.floating-card i {
    color: #ff3b30;
    font-size: 18px;
}

.floating-card strong {
    font-size: 13px;
}

.card-one {
    top: 100px;
    right: 15px;
}

.card-two {
    bottom: 100px;
    left: 10px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .freezer-banner-section {
        padding: 70px 0;
    }

    .freezer-banner-section .hero-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-content {
        order: 1;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        order: 2;
        min-height: 450px;
    }

    .hero-image img {
        width: 90%;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .freezer-banner-section {
        padding: 55px 20px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
    }

    .hero-feature {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        min-height: 330px;
    }

    .hero-image img {
        width: 110%;
    }

    .hero-image-glow {
        width: 330px;
        height: 330px;
    }

    .floating-card {
        transform: scale(.85);
    }

    .card-one {
        top: 20px;
        right: -5px;
    }

    .card-two {
        bottom: 20px;
        left: -5px;
    }
}

/*====================================
Continuous Monitoring Section Start
====================================*/

.continuous-monitoring-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f4f8ff;
}

/* Container */

.continuous-monitoring-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Main Layout */

.continuous-monitoring-wrapper {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: stretch;
    gap: 28px;
}

/* Left Heading Panel */

.monitoring-heading-panel {
    position: relative;
    display: flex;
    min-height: 570px;
    padding: 55px 45px;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        145deg,
        #002964 0%,
        #0a468f 100%
    );
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 41, 100, 0.2);
    box-sizing: border-box;
}

/* Decorative Circle */

.monitoring-heading-panel::before {
    content: "";
    position: absolute;
    top: -110px;
    right: -110px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.monitoring-heading-panel::after {
    content: "";
    position: absolute;
    bottom: -130px;
    left: -100px;
    width: 340px;
    height: 340px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

/* Small Label */

.monitoring-heading-panel .heading-label {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 18px;
    color: #ff5b52;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
}

/* Main Heading */

.monitoring-heading-panel h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.monitoring-heading-panel h2 span {
    display: block;
    color: #ff5b52;
}

/* Right Content */

.monitoring-content-panel {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 20px;
}

/* Content Cards */

.monitoring-text-card {
    position: relative;
    padding: 42px 40px 42px 100px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(6, 46, 130, 0.06);
    box-sizing: border-box;
    transition: 0.35s ease;
}

.monitoring-text-card:hover {
    border-color: #002964;
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(6, 46, 130, 0.11);
}

/* Card Number */

.monitoring-text-card .card-number {
    position: absolute;
    top: 38px;
    left: 35px;
    color: #002964;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    transition: 0.35s ease;
}

.monitoring-text-card:hover .card-number {
    color: #ff3b30;
}

/* Paragraph */

.monitoring-text-card p {
    margin: 0 0 20px;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
}

.monitoring-text-card p:last-child {
    margin-bottom: 0;
}

.monitoring-text-card strong {
    color: #002964;
    font-weight: 600;
}

/* Red Accent on Second Card */

.monitoring-text-card.second-card {
    border-bottom: 4px solid #ff3b30;
}

/* Background Decoration */

.continuous-monitoring-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 450px;
    height: 450px;
    background: rgba(0, 41, 100, 0.04);
    border-radius: 50%;
}

/* Tablet */

@media (max-width: 991px) {
    .continuous-monitoring-section {
        padding: 80px 0;
    }

    .continuous-monitoring-section .container {
        padding: 0 25px;
    }

    .continuous-monitoring-wrapper {
        grid-template-columns: 1fr;
    }

    .monitoring-heading-panel {
        min-height: auto;
        padding: 50px 40px;
    }

    .monitoring-heading-panel h2 {
        max-width: 750px;
        font-size: 40px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .continuous-monitoring-section {
        padding: 60px 0;
    }

    .continuous-monitoring-section .container {
        padding: 0 20px;
    }

    .monitoring-heading-panel {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .monitoring-heading-panel .heading-label {
        margin-bottom: 12px;
        font-size: 13px;
    }

    .monitoring-heading-panel h2 {
        font-size: 32px;
    }

    .monitoring-content-panel {
        gap: 15px;
    }

    .monitoring-text-card {
        padding: 75px 22px 30px;
        border-radius: 16px;
    }

    .monitoring-text-card .card-number {
        top: 25px;
        left: 22px;
        font-size: 36px;
    }

    .monitoring-text-card p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* Small Mobile */

@media (max-width: 400px) {
    .continuous-monitoring-section .container {
        padding: 0 15px;
    }

    .monitoring-heading-panel h2 {
        font-size: 28px;
    }
}

/*====================================
Continuous Monitoring Section End
====================================*/

/*====================================
Temperature Alarm Section Start
====================================*/

.temperature-alarm-section {
    padding: 90px 0;
    background: #ffffff;
}

/* Container */

.temperature-alarm-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Banner */

.temperature-alarm-banner {
    position: relative;
    width: 100%;
    height: 570px;
    overflow: hidden;
    background: #002964;
    border-radius: 28px;
    box-shadow: 0 25px 65px rgba(6, 46, 130, 0.16);
}

/* Banner Image */

.temperature-alarm-banner > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.temperature-alarm-banner:hover > img {
    transform: scale(1.05);
}

/* Dark Gradient */

.temperature-alarm-banner::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 41, 100, 0.88) 0%,
        rgba(0, 41, 100, 0.55) 38%,
        rgba(0, 41, 100, 0.08) 75%,
        rgba(0, 41, 100, 0) 100%
    );
}

/* Red Decorative Line */

.temperature-alarm-banner::after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 190px;
    height: 6px;
    background: #ff3b30;
}

/* Heading Overlay */

.temperature-alarm-overlay {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 60px;
    max-width: 600px;
    transform: translateY(-50%);
}

.temperature-alarm-overlay h2 {
    margin: 0;
    color: #ffffff;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
}

.temperature-alarm-overlay h2 span {
    display: block;
    color: #ff5b52;
}

/* Decorative Circle */

.temperature-alarm-overlay::before {
    content: "";
    position: absolute;
    top: -35px;
    left: -25px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

/* Tablet */

@media (max-width: 991px) {
    .temperature-alarm-section {
        padding: 80px 0;
    }

    .temperature-alarm-section .container {
        padding: 0 25px;
    }

    .temperature-alarm-banner {
        height: 500px;
    }

    .temperature-alarm-overlay {
        left: 45px;
        max-width: 520px;
    }

    .temperature-alarm-overlay h2 {
        font-size: 40px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .temperature-alarm-section {
        padding: 60px 0;
    }

    .temperature-alarm-section .container {
        padding: 0 20px;
    }

    .temperature-alarm-banner {
        height: 430px;
        border-radius: 20px;
    }

    .temperature-alarm-banner::before {
        background: linear-gradient(
            0deg,
            rgba(0, 41, 100, 0.9) 0%,
            rgba(0, 41, 100, 0.3) 70%,
            rgba(0, 41, 100, 0.05) 100%
        );
    }

    .temperature-alarm-overlay {
        top: auto;
        right: 25px;
        bottom: 40px;
        left: 25px;
        max-width: none;
        transform: none;
    }

    .temperature-alarm-overlay h2 {
        font-size: 32px;
    }
}

/* Small Mobile */

@media (max-width: 400px) {
    .temperature-alarm-section .container {
        padding: 0 15px;
    }

    .temperature-alarm-banner {
        height: 380px;
    }

    .temperature-alarm-overlay h2 {
        font-size: 28px;
    }
}

/*====================================
Temperature Alarm Section End
====================================*/

/*====================================
Wireless Sensors Section Start
====================================*/

.wireless-sensors-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #ffffff;
}

/* Container */

.wireless-sensors-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Main Wrapper */

.wireless-sensors-wrapper {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    min-height: 300px;
    overflow: hidden;
    border: 1px solid #dfe7f3;
    border-radius: 26px;
    box-shadow: 0 22px 60px rgba(6, 46, 130, 0.1);
}

/* Left Title Panel */

.wireless-title-panel {
    position: relative;
    display: flex;
    padding: 50px;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(
        145deg,
        #002964 0%,
        #0a468f 100%
    );
    box-sizing: border-box;
}

/* Decorative Circle */

.wireless-title-panel::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 230px;
    height: 230px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.wireless-title-panel::after {
    content: "";
    position: absolute;
    right: 35px;
    bottom: 35px;
    width: 70px;
    height: 3px;
    background: #ff3b30;
}

/* Heading */

.wireless-title-panel h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.25;
    text-align: left;
}

.wireless-title-panel h2 span {
    display: block;
    color: #ff5b52;
}

/* Right Content Panel */

.wireless-content-panel {
    position: relative;
    display: flex;
    padding: 55px 60px;
    align-items: center;
    background: #f8fbff;
    box-sizing: border-box;
}

/* Red Accent Shape */

.wireless-content-panel::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 90px;
    background: #ff3b30;
    border-radius: 0 5px 5px 0;
    transform: translateY(-50%);
}

/* Paragraph */

.wireless-content-panel p {
    margin: 0;
    color: #646f88;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.9;
    text-align: left;
}

/* Background Decoration */

.wireless-sensors-section::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 380px;
    height: 380px;
    background: rgba(0, 41, 100, 0.04);
    border-radius: 50%;
}

/* Tablet */

@media (max-width: 991px) {
    .wireless-sensors-section {
        padding: 80px 0;
    }

    .wireless-sensors-section .container {
        padding: 0 25px;
    }

    .wireless-sensors-wrapper {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .wireless-title-panel {
        padding: 40px;
    }

    .wireless-title-panel h2 {
        font-size: 40px;
    }

    .wireless-content-panel {
        padding: 45px 40px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .wireless-sensors-section {
        padding: 60px 0;
    }

    .wireless-sensors-section .container {
        padding: 0 20px;
    }

    .wireless-sensors-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 20px;
    }

    .wireless-title-panel {
        min-height: 210px;
        padding: 35px 25px;
    }

    .wireless-title-panel h2 {
        font-size: 32px;
    }

    .wireless-content-panel {
        padding: 35px 25px;
    }

    .wireless-content-panel::before {
        top: 0;
        left: 25px;
        width: 90px;
        height: 4px;
        transform: none;
    }

    .wireless-content-panel p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* Small Mobile */

@media (max-width: 400px) {
    .wireless-sensors-section .container {
        padding: 0 15px;
    }

    .wireless-title-panel h2 {
        font-size: 28px;
    }
}

/*====================================
Wireless Sensors Section End
====================================*/

/*====================================
Paperless Hygrometer Section Start
====================================*/

.paperless-hygrometer-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f4f8ff;
}

/* Container */

.paperless-hygrometer-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Heading and Introduction */

.paperless-hygrometer-section .hygrometer-intro {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 55px;
}

/* Main Heading */

.paperless-hygrometer-section .hygrometer-heading h2 {
    margin: 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
}

.paperless-hygrometer-section .hygrometer-heading h2 span {
    display: block;
    color: #ff3b30;
}

/* Introduction Paragraph */

.paperless-hygrometer-section .hygrometer-intro > p {
    margin: 0;
    padding-left: 50px;
    color: #646f88;
    border-left: 1px solid #d6e1ef;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
    text-align: left;
}

.paperless-hygrometer-section .hygrometer-intro > p strong {
    color: #002964;
    font-weight: 600;
}

/* Monitor Showcase */

.paperless-hygrometer-section .hygrometer-showcase {
    position: relative;
    display: flex;
    min-height: 580px;
    padding: 55px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        145deg,
        #002964 0%,
        #0b4a99 100%
    );
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(0, 41, 100, 0.2);
    box-sizing: border-box;
}

/* Showcase Decorative Circles */

.paperless-hygrometer-section .showcase-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.paperless-hygrometer-section .circle-one {
    top: -140px;
    left: -120px;
    width: 380px;
    height: 380px;
}

.paperless-hygrometer-section .circle-two {
    right: -150px;
    bottom: -160px;
    width: 430px;
    height: 430px;
}

/* Main Monitor Image */

.paperless-hygrometer-section .hygrometer-showcase > img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 850px;
    max-height: 490px;
    object-fit: contain;
    filter: drop-shadow(
        0 28px 38px rgba(0, 0, 0, 0.28)
    );
    transition: 0.45s ease;
}

.paperless-hygrometer-section .hygrometer-showcase:hover > img {
    transform: translateY(-10px) scale(1.02);
}

/* Bottom Content Layout */

.paperless-hygrometer-section .hygrometer-details {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    align-items: stretch;
    gap: 30px;
    margin-top: 30px;
}

/* Text Panel */

.paperless-hygrometer-section .hygrometer-text {
    padding: 45px;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(6, 46, 130, 0.06);
    box-sizing: border-box;
}

.paperless-hygrometer-section .hygrometer-text p {
    margin: 0 0 22px;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
    text-align: left;
}

.paperless-hygrometer-section .hygrometer-text p:last-child {
    margin-bottom: 0;
}

/* Museum Image */

.paperless-hygrometer-section .museum-image {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(6, 46, 130, 0.12);
}

.paperless-hygrometer-section .museum-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 41, 100, 0.35),
        transparent 60%
    );
}

.paperless-hygrometer-section .museum-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.paperless-hygrometer-section .museum-image:hover img {
    transform: scale(1.07);
}

/* Background Decoration */

.paperless-hygrometer-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 450px;
    height: 450px;
    background: rgba(0, 41, 100, 0.04);
    border-radius: 50%;
}

/* Tablet Responsive */

@media (max-width: 991px) {
    .paperless-hygrometer-section {
        padding: 80px 0;
    }

    .paperless-hygrometer-section .container {
        padding: 0 25px;
    }

    .paperless-hygrometer-section .hygrometer-intro {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .paperless-hygrometer-section .hygrometer-heading h2 {
        font-size: 40px;
    }

    .paperless-hygrometer-section .hygrometer-intro > p {
        padding-top: 25px;
        padding-left: 0;
        border-top: 1px solid #d6e1ef;
        border-left: none;
    }

    .paperless-hygrometer-section .hygrometer-showcase {
        min-height: 500px;
    }

    .paperless-hygrometer-section .hygrometer-details {
        grid-template-columns: 1fr;
    }

    .paperless-hygrometer-section .museum-image {
        min-height: 420px;
    }
}

/* Mobile Responsive */

@media (max-width: 600px) {
    .paperless-hygrometer-section {
        padding: 60px 0;
    }

    .paperless-hygrometer-section .container {
        padding: 0 20px;
    }

    .paperless-hygrometer-section .hygrometer-intro {
        margin-bottom: 40px;
    }

    .paperless-hygrometer-section .hygrometer-heading h2 {
        font-size: 32px;
    }

    .paperless-hygrometer-section .hygrometer-intro > p,
    .paperless-hygrometer-section .hygrometer-text p {
        font-size: 15px;
        line-height: 1.8;
    }

    .paperless-hygrometer-section .hygrometer-showcase {
        min-height: 370px;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .paperless-hygrometer-section .hygrometer-showcase > img {
        max-height: 320px;
    }

    .paperless-hygrometer-section .hygrometer-details {
        gap: 20px;
        margin-top: 20px;
    }

    .paperless-hygrometer-section .hygrometer-text {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .paperless-hygrometer-section .museum-image {
        min-height: 340px;
        border-radius: 18px;
    }
}

/* Small Mobile */

@media (max-width: 400px) {
    .paperless-hygrometer-section .container {
        padding: 0 15px;
    }

    .paperless-hygrometer-section .hygrometer-heading h2 {
        font-size: 28px;
    }

    .paperless-hygrometer-section .hygrometer-showcase {
        min-height: 320px;
    }
}

/*====================================
Paperless Hygrometer Section End
====================================*/
/*====================================
Testing Laboratories Section Start
====================================*/

.testing-laboratories-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 90px;
    background: #f4f8ff;
}

/* Container */

.testing-laboratories-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Main Wrapper */

.laboratory-wrapper {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    padding-top: 85px;
}

/* Floating Heading Card */

.laboratory-floating-heading {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 55px;
    min-width: 430px;
    padding: 30px 40px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #002964 0%,
        #0a468f 100%
    );
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 41, 100, 0.25);
    box-sizing: border-box;
}

/* Heading Decoration */

.laboratory-floating-heading::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -50px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.laboratory-floating-heading::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 5px;
    background: #ff3b30;
}

/* Heading */

.laboratory-floating-heading h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;
    text-align: left;
}

.laboratory-floating-heading h2 span {
    color: #ff5b52;
}

/* Content Card */

.laboratory-content-card {
    position: relative;
    min-height: 280px;
    padding: 115px 65px 55px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 26px;
    box-shadow: 0 22px 60px rgba(6, 46, 130, 0.08);
    box-sizing: border-box;
}

/* Content Card Accent */

.laboratory-content-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 70px;
    width: 1px;
    height: 70px;
    background: #d6e1ef;
}

.laboratory-content-card::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -110px;
    width: 280px;
    height: 280px;
    background: rgba(0, 41, 100, 0.035);
    border-radius: 50%;
}

/* Paragraph */

.laboratory-content-card p {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    color: #646f88;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.9;
    text-align: left;
}

/* Hover */

.laboratory-wrapper:hover .laboratory-floating-heading {
    transform: translateY(-6px);
}

.laboratory-floating-heading {
    transition: 0.35s ease;
}

/* Background Decoration */

.testing-laboratories-section::before {
    content: "";
    position: absolute;
    top: -160px;
    left: -140px;
    width: 400px;
    height: 400px;
    background: rgba(0, 41, 100, 0.04);
    border-radius: 50%;
}

/* Tablet */

@media (max-width: 991px) {
    .testing-laboratories-section {
        padding: 110px 0 80px;
    }

    .testing-laboratories-section .container {
        padding: 0 25px;
    }

    .laboratory-floating-heading {
        left: 40px;
        min-width: 390px;
    }

    .laboratory-floating-heading h2 {
        font-size: 36px;
    }

    .laboratory-content-card {
        padding: 110px 45px 50px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .testing-laboratories-section {
        padding: 60px 0;
    }

    .testing-laboratories-section .container {
        padding: 0 20px;
    }

    .laboratory-wrapper {
        padding-top: 0;
    }

    .laboratory-floating-heading {
        position: relative;
        top: auto;
        left: auto;
        min-width: 0;
        width: calc(100% - 30px);
        margin: 0 auto -35px;
        padding: 25px;
        border-radius: 16px;
    }

    .laboratory-floating-heading h2 {
        font-size: 30px;
    }

    .laboratory-content-card {
        min-height: auto;
        padding: 75px 25px 35px;
        border-radius: 20px;
    }

    .laboratory-content-card p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* Small Mobile */

@media (max-width: 400px) {
    .testing-laboratories-section .container {
        padding: 0 15px;
    }

    .laboratory-floating-heading h2 {
        font-size: 27px;
    }
}

/*====================================
Testing Laboratories Section End
====================================*/

/*====================================
Warehouses Section Start
====================================*/

.warehouses-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
}

/* Container */

.warehouses-section .container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Main Wrapper */

.warehouses-wrapper {
    display: grid;
    grid-template-columns: 160px 1fr;
    min-height: 390px;
    overflow: hidden;
    background: #f8fbff;
    border: 1px solid #dfe7f3;
    border-radius: 26px;
    box-shadow: 0 22px 60px rgba(6, 46, 130, 0.09);
}

/* Vertical Heading Rail */

.warehouse-title-rail {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        #002964 0%,
        #0a468f 100%
    );
}

/* Decorative Circle */

.warehouse-title-rail::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -70px;
    width: 210px;
    height: 210px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.warehouse-title-rail::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 120px;
    background: #ff3b30;
}

/* Vertical Heading */

.warehouse-title-rail h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transform: rotate(-90deg);
}

/* Content Panel */

.warehouse-content {
    position: relative;
    display: flex;
    padding: 60px 70px;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

/* Background Shape */

.warehouse-content::before {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -130px;
    width: 330px;
    height: 330px;
    background: rgba(0, 41, 100, 0.035);
    border-radius: 50%;
}

/* Paragraphs */

.warehouse-content p {
    position: relative;
    z-index: 2;
    margin: 0 0 22px;
    color: #646f88;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.9;
    text-align: left;
}

.warehouse-content p:last-child {
    margin-bottom: 0;
}

/* Decorative Background */

.warehouses-section::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -160px;
    width: 420px;
    height: 420px;
    background: rgba(0, 41, 100, 0.04);
    border-radius: 50%;
}

/* Tablet */

@media (max-width: 991px) {
    .warehouses-section {
        padding: 80px 0;
    }

    .warehouses-section .container {
        padding: 0 25px;
    }

    .warehouses-wrapper {
        grid-template-columns: 135px 1fr;
    }

    .warehouse-title-rail h2 {
        font-size: 38px;
    }

    .warehouse-content {
        padding: 50px 45px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .warehouses-section {
        padding: 60px 0;
    }

    .warehouses-section .container {
        padding: 0 20px;
    }

    .warehouses-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 20px;
    }

    .warehouse-title-rail {
        min-height: 150px;
    }

    .warehouse-title-rail::after {
        right: auto;
        bottom: 0;
        left: 25px;
        width: 100px;
        height: 5px;
    }

    .warehouse-title-rail h2 {
        font-size: 32px;
        transform: none;
    }

    .warehouse-content {
        padding: 35px 25px;
    }

    .warehouse-content p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* Small Mobile */

@media (max-width: 400px) {
    .warehouses-section .container {
        padding: 0 15px;
    }

    .warehouse-title-rail h2 {
        font-size: 28px;
    }
}

/*====================================
Warehouses Section End
====================================*/
/*====================================
Computer Data Section Start
====================================*/

.computer-data-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f4f8ff;
}

/* Container */

.computer-data-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Main Layout */

.computer-data-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

/* Left Content */

.computer-data-content {
    max-width: 540px;
    text-align: left;
}

/* Heading */

.computer-data-content .section-heading {
    margin: 0 0 30px;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
}

.computer-data-content .section-heading span {
    display: block;
    color: #ff3b30;
}

/* Paragraph */

.computer-data-content p {
    margin: 0 0 22px;
    color: #646f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
}

.computer-data-content p:last-child {
    margin-bottom: 0;
}

/* Right Visual Area */

.computer-data-visual {
    position: relative;
    padding-bottom: 45px;
    text-align: center;
}

/* Software Image Card */

.software-image-card {
    position: relative;
    display: flex;
    min-height: 500px;
    padding: 45px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe7f3;
    border-radius: 26px;
    box-shadow: 0 24px 65px rgba(6, 46, 130, 0.12);
    box-sizing: border-box;
}

/* Image Background */

.software-background {
    position: absolute;
    width: 410px;
    height: 410px;
    background: linear-gradient(
        145deg,
        #eef5ff 0%,
        #f8fbff 100%
    );
    border-radius: 50%;
}

/* Software Screenshot */

.software-image-card img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 590px;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(
        0 20px 28px rgba(6, 46, 130, 0.12)
    );
    transition: 0.4s ease;
}

.software-image-card:hover img {
    transform: translateY(-8px) scale(1.02);
}

/* Buy Now Button */

.computer-buy-button {
    position: absolute;
    z-index: 3;
    right: 70px;
    bottom: 15px;
    left: 70px;
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff3b30;
    border: 6px solid #f4f8ff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(255, 59, 48, 0.22);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.computer-buy-button:hover {
    color: #ffffff;
    background: #002964;
    transform: translateY(-4px);
}

/* Background Decoration */

.computer-data-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 450px;
    height: 450px;
    background: rgba(0, 41, 100, 0.04);
    border-radius: 50%;
}

/* Tablet */

@media (max-width: 991px) {
    .computer-data-section {
        padding: 80px 0;
    }

    .computer-data-section .container {
        padding: 0 25px;
    }

    .computer-data-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .computer-data-content {
        max-width: 750px;
    }

    .computer-data-content .section-heading {
        font-size: 40px;
    }

    .computer-data-visual {
        max-width: 750px;
        margin: 0 auto;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .computer-data-section {
        padding: 60px 0;
    }

    .computer-data-section .container {
        padding: 0 20px;
    }

    .computer-data-wrapper {
        gap: 40px;
    }

    .computer-data-content .section-heading {
        margin-bottom: 25px;
        font-size: 32px;
    }

    .computer-data-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .software-image-card {
        min-height: 370px;
        padding: 25px;
        border-radius: 20px;
    }

    .software-background {
        width: 280px;
        height: 280px;
    }

    .software-image-card img {
        max-height: 310px;
    }

    .computer-buy-button {
        right: 25px;
        left: 25px;
        min-height: 54px;
    }
}

/* Small Mobile */

@media (max-width: 400px) {
    .computer-data-section .container {
        padding: 0 15px;
    }

    .computer-data-content .section-heading {
        font-size: 28px;
    }
}

/*====================================
Computer Data Section End
====================================*/
